home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 65.zip / BS1 part 65 / Protracker v2.1a.adf / devs / MountList next >
Text File  |  1992-04-13  |  3KB  |  130 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler */
  4.  
  5. NEWCON: 
  6.     Handler = L:Newcon-Handler
  7.     Priority = 5
  8.     StackSize = 1000
  9. #
  10.  
  11. /* This is an example of a non-filing system mount using a handler written
  12.    in C.
  13. */
  14.  
  15. SPEAK:     
  16.     Handler = L:Speak-Handler
  17.     Stacksize = 6000
  18.     Priority = 5
  19.     GlobVec = -1
  20. #
  21.  
  22. /*  This is an example of an alternative type of non-filing device mount,
  23.     used to mount the non-buffered serial handler
  24. */
  25.  
  26. AUX:
  27.     Handler = L:Aux-Handler
  28.     Stacksize = 1000
  29.     Priority = 5
  30. #
  31. /*  This is a non-filing system device */
  32.  
  33. PIPE:      
  34.     Handler = L:Pipe-Handler
  35.     Stacksize = 6000
  36.     Priority = 5
  37.     GlobVec = -1
  38. #
  39.  
  40. /* This is an example of a mount list entry for using the recoverable 
  41.    ram disk.  Depending on the amount of memory you wish to devote to
  42.    it, you may want to change the HighCyl value.
  43. */
  44.  
  45. RAD:       Device = ramdrive.device
  46.            Unit   = 0
  47.            Flags  = 0
  48.            Surfaces  = 2
  49.            BlocksPerTrack = 11
  50.            Reserved = 2
  51.            Interleave = 0
  52.            LowCyl = 0  ;  HighCyl = 20
  53.            Buffers = 5
  54.            BufMemType = 1
  55. #
  56.  
  57. /* Makes a Mini RAD: */
  58.  
  59. MiniRAD:   Device = ramdrive.device
  60.            Unit   = 0
  61.            Flags  = 0
  62.            Surfaces  = 2
  63.            BlocksPerTrack = 11
  64.            Reserved = 2
  65.            Interleave = 0
  66.            LowCyl = 0  ;  HighCyl = 7
  67.            Buffers = 5
  68.            BufMemType = 1
  69. #
  70.  
  71. /* Mount a 5.25" disk drive to be mounted as DF2: */
  72.  
  73. DF2:       Device = trackdisk.device
  74.            Unit   = 2
  75.            Flags  = 1
  76.            Surfaces  = 2
  77.            BlocksPerTrack = 11
  78.            Reserved = 2
  79.            Interleave = 0
  80.            LowCyl = 0  ;  HighCyl = 39
  81.            Buffers = 20
  82.            BufMemType = 3
  83. #
  84.  
  85. /* An example mount entry using the fast file system with a partition
  86.    of the hard disk using the 2090 disk controller.  PREP has been
  87.    used to create the first partition (up to cylinder 20).  The second
  88.    partition is MOUNTed, using the following entry:
  89.    NOTE: Some hard disk drivers require more stack than specified here.
  90.    Some may required less.
  91.    (The hard disk is not included; this is only an example.)
  92. */
  93.  
  94. FAST:
  95.     Device = hddisk.device
  96.     FileSystem = l:FastFileSystem
  97.     Unit   = 1
  98.     Flags  = 0
  99.     Surfaces  = 4
  100.     BlocksPerTrack = 17
  101.     Reserved = 2
  102.     Interleave = 0
  103.     LowCyl = 21  ;  HighCyl = 800
  104.     Buffers = 30
  105.     GlobVec = -1
  106.     BufMemType = 1
  107.     Mount = 1
  108.     DosType = 0x444F5301
  109.     StackSize = 4000
  110. #
  111.  
  112. /* Let's say you have an A2000 with an internal drive, and an external
  113.    drive, and you want to refer to the external drive as DF1: as well
  114.    as DF2:   Well, this MountList entry will do it for you.  This technique
  115.    can be extended to provide you with a drive A: and B: if you really
  116.    want.
  117. */
  118.  
  119. DF1:       Device = trackdisk.device
  120.            Unit   = 2
  121.            Flags  = 1
  122.            Surfaces  = 2
  123.            BlocksPerTrack = 11
  124.            Reserved = 2
  125.            Interleave = 0
  126.            LowCyl = 0  ;  HighCyl = 79
  127.            Buffers = 20
  128.            BufMemType = 3
  129. #
  130.